-
Notifications
You must be signed in to change notification settings - Fork 65
starknet_committer,starknet_patricia: remove FilledNode impl #11637
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: ariel/add_db_layout_trait
Are you sure you want to change the base?
Conversation
dea4819 to
9ae77d9
Compare
a79210d to
ff6bafb
Compare
4979976 to
52b3860
Compare
ff6bafb to
4891067
Compare
52b3860 to
54be4a4
Compare
4891067 to
7fae6af
Compare
54be4a4 to
ebb6609
Compare
1e936a8 to
1abb071
Compare
422fdc0 to
d188156
Compare
81c6658 to
dac0463
Compare
d188156 to
f6484e6
Compare
nimrod-starkware
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nimrod-starkware reviewed 2 files and all commit messages, and made 1 comment.
Reviewable status:complete! all files reviewed, all discussions resolved (waiting on @yoavGrs).
yoavGrs
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@yoavGrs reviewed 2 files and all commit messages, and made 1 comment.
Reviewable status:complete! all files reviewed, all discussions resolved (waiting on @ArielElp).
f6484e6 to
9c7d4a5
Compare
dac0463 to
1929e54
Compare
dorimedini-starkware
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dorimedini-starkware reviewed 2 files and all commit messages, and made 1 comment.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @ArielElp).
crates/starknet_committer_and_os_cli/src/committer_cli/tests/python_tests.rs line 688 at r2 (raw file):
let suffix = node.hash.0.to_bytes_be(); node.get_db_key(key_context, &suffix) }
- move to above usages
- make it private, so it's clear that it's an internal util and not a real DB key
Suggestion:
fn db_key<L: Leaf>(
node: &FactDbFilledNode<L>,
key_context: &<L as HasStaticPrefix>::KeyContext,
) -> DbKey {
let suffix = node.hash.0.to_bytes_be();
node.get_db_key(key_context, &suffix)
}9c7d4a5 to
578fe88
Compare
1929e54 to
200a339
Compare
ArielElp
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ArielElp made 1 comment.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @dorimedini-starkware).
crates/starknet_committer_and_os_cli/src/committer_cli/tests/python_tests.rs line 688 at r2 (raw file):
Previously, dorimedini-starkware wrote…
- move to above usages
- make it private, so it's clear that it's an internal util and not a real DB key
Done. (I think, not sure about 1, I moved it up before the first usage)
dorimedini-starkware
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dorimedini-starkware made 1 comment.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @ArielElp).
crates/starknet_committer_and_os_cli/src/committer_cli/tests/python_tests.rs line 688 at r2 (raw file):
Previously, ArielElp wrote…
Done. (I think, not sure about 1, I moved it up before the first usage)
did you push?
578fe88 to
22e313f
Compare
ArielElp
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ArielElp made 1 comment.
Reviewable status: 1 of 2 files reviewed, 1 unresolved discussion (waiting on @dorimedini-starkware, @nimrod-starkware, and @yoavGrs).
crates/starknet_committer_and_os_cli/src/committer_cli/tests/python_tests.rs line 688 at r2 (raw file):
Previously, dorimedini-starkware wrote…
did you push?
Did now

No description provided.